home *** CD-ROM | disk | FTP | other *** search
/ Programmer Plus 2007 / Programmer-Plus-2007.iso / Programming / JAVA Utilities / JProxy 1.1.0 / SAMPLES.JAR / com / jproxy / samples / ejb / test / ISession.java < prev    next >
Encoding:
Java Source  |  2003-04-29  |  517 b   |  20 lines

  1. package com.jproxy.samples.ejb.test;
  2.  
  3. import javax.ejb.EJBObject;
  4. import java.rmi.RemoteException;
  5.  
  6. import com.jproxy.samples.interfaces.ITest;
  7.  
  8. /**
  9.  * ISession interface agregates all remote interfaces.
  10.  * ISession may extend number of interfaces.
  11.  * Each interface has its own implementation.
  12.  * It allows encapculation different interfaces from its implemntation
  13.  * It also allows validate methods of interfaces during compilation.
  14.  */
  15. public interface ISession
  16.     extends EJBObject,
  17.             ITest
  18. {
  19. }
  20.